#HTML <td>
The <td> HTML element defines a cell of a table that contains data and may be used as a child of the <tr> element.
#Attributes
colspan
: Contains a non-negative integer value that indicates how many columns the data cell spans or extends. The default value is1
. User agents dismiss values higher than 1000 as incorrect, setting to the default value (1
).headers
: Contains a list of space-separated strings, each corresponding to theid
attribute of the<th>
elements that provide headings for this table cell.rowspan
: Contains a non-negative integer value that indicates for how many rows the data cell spans or extends. The default value is1
; if its value is set to0
, it extends until the end of the table grouping section (<thead>
,<tbody>
,<tfoot>
, even if implicitly defined), that the cell belongs to. Values higher than65534
are clipped to65534
.